Skip to main content
Version: 1.0.2

Add or Update Card Group

Add or Update Merchant Category Code (MCC) and country group of the issued card.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "visadps100053"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value : "UPDATE_CARD_GROUP"

customerId

Mandatory

String

Unique ID of the customer

Sample Value : "100000000006001"

accountNumber

Mandatory

String

Account number of the customer

Sample Value : "400320588344662"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value :"VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value : "DEFAULT"

card

Mandatory

Object

cardId

Mandatory

String

Unique identifier of the card

Sample Value : "ff32c9ded3774e109e002773e8822a0b"

countryGroupId

Mandatory

String

Unique identifier of the country group associated with the card

Sample Value : "673d99a236e456cc9c792c14"

mccGroupId

Mandatory

String

Unique identifier of the MCC group associated with the card

Sample Value : "673dacfe36e456cc9c7980d5"

lockCardAcceptor

Optional

Enum

Whether card is restricted to specific card

acceptor or not, which is depending upon the

given value

Valid Values:

DEFAULT – takes the value (YES or NO) given by

admin

YES – card is restricted to specific card acceptor

NO – card is not restricted to specific card

acceptor

Sample Value : "NO"


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100053","transactionType":"UPDATE_CARD_GROUP","customerId":"100000000006001","accountNumber":"400320588344662","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT","card":{"cardId":"ff32c9ded3774e109e002773e8822a0b","countryGroupId":"673d99a236e456cc9c792c14","mccGroupId":"673dacfe36e456cc9c7980d5","lockCardAcceptor":"NO"}},"api":{"credential":"{{cred}}","signature":"{{signature}}","apiKey":"{{Api-key}}"}}}'

Body

{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100053",
"transactionType": "UPDATE_CARD_GROUP",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT",
"card": {
"cardId": "ff32c9ded3774e109e002773e8822a0b",
"countryGroupId": "673d99a236e456cc9c792c14",
"mccGroupId": "673dacfe36e456cc9c7980d5",
"lockCardAcceptor": "NO"
}
},
"api": {
"credential": "{{cred}}",
"signature": "{{signature}}",
"apiKey": "{{Api-key}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response Id echoed from the request Id

Sample Value : "1"

result

Object

card

Object

cardId

String

Unique identifier of the card

Sample Value : "ff32c9ded3774e109e002773e8822a0b"

postedDate

String

Date and time when the card details were posted

Sample Value : "2024-11-20T07:32:53.796Z"

updatedDate

String

Date and time when the card details were updated

Sample Value : "2024-11-20T09:39:33.389Z"

allowAtm

Boolean

Allowing card for transactions through ATM

Sample Value : false

allowEcommerce

Boolean

Allowing card for e-commerce transactions

Sample Value : false

allowMoto

Boolean

Allowing card for transactions through mobile

Sample Value : false

allowPos

Boolean

Allowing card for point-of-sale (POS) terminal transaction

Sample Value : false

allowTips

Boolean

Allowing card for tips transaction

Sample Value : false

allowPurchase

Boolean

Allowing card for purchase transaction

Sample Value : false

allowRefund

Boolean

Allowing card for refund transaction

Sample Value : false

allowCashback

Boolean

Allowing card for cashback transaction

Sample Value : false

allowWithdraw

Boolean

Allowing card for ATM withdrawal transaction

Sample Value : false

allowAuthAndCompletion

Boolean

Allowing for authorization and completion of transaction that happens through card

Sample Value : false

smart

Boolean

Allowing card for smart transaction

Sample Value : false

checkAvsZip

Boolean

Allowing card to perform AVS checks on the legalRep ZIP code during transaction

Sample Value : false

checkAvsAddr

Boolean

Allowing card to perform AVS checks on the legalRep address during transaction

Sample Value : false

cvv

String

Card Verification Value of the card

Sample Value : ""

mccGroupId

String

Unique identifier of the MCC group associated with the card

Sample Value : "673dacfe36e456cc9c7980d5"

countryGroupId

String

Unique identifier of the country group associated with the card

Sample Value : "673d99a236e456cc9c792c14"

transactionMade

Boolean

Indicates whether any transactions have been made using the card or not

Sample Value : false

isReIssue

Boolean

Indicates whether the card is reissued

Sample Value : false

isReplace

Boolean

Indicates whether the card replaced

Sample Value : false

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " UPDATE_CARD_GROUP_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REFvisadps100053"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1732095573

originalReference

String

Original reference ID taken from the request

Sample value: " visadps100053"


{
"id": "1",
"result": {
"card": {
"cardId": "ff32c9ded3774e109e002773e8822a0b",
"postedDate": "2024-11-20T07:32:53.796Z",
"updatedDate": "2024-11-20T09:39:33.389Z",
"allowAtm": false,
"allowEcommerce": false,
"allowMoto": false,
"allowPos": false,
"allowTips": false,
"allowPurchase": false,
"allowRefund": false,
"allowCashback": false,
"allowWithdraw": false,
"allowAuthAndCompletion": false,
"smart": false,
"checkAvsZip": false,
"checkAvsAddr": false,
"cvv": "",
"mccGroupId": "673dacfe36e456cc9c7980d5",
"countryGroupId": "673d99a236e456cc9c792c14",
"transactionMade": false,
"isReIssue": false,
"isReplace": false
},
"api": {
"type": "UPDATE_CARD_GROUP_ACK",
"reference": "REFvisadps100053",
"dateCreated": 1732095573,
"originalReference": "visadps100053"
}
}
}